Add text and buttons to any section using paragraphs, texts, or buttons arrays.
| Field | Description |
|---|---|
label | Button text |
url | Button link URL |
style | "primary" (black bg) or "outline" (border only) |
align | "left", "center" (default), or "right" |
This is a paragraph with bold and italic text.
Another paragraph with inline code.
{
"label": "ABOUT ME",
"paragraphs": [
"Paragraph with **bold** and *italic*.",
"Another paragraph with `code`."
]
}
{
"label": "View Research",
"url": "#",
"style": "primary"
}
{
"label": "Download CV",
"url": "#",
"style": "outline"
}
Research interests and a link below.
View Profile{
"label": "RESEARCH",
"texts": [
"**Primary:** Field, Method, Topic"
],
"buttons": [
{ "label": "View Profile", "url": "#", "style": "primary" }
]
}
{
"label": "Left Aligned",
"url": "#",
"style": "primary",
"align": "left"
}